物件與純值


Posted by hoyi-23 on 2021-06-21

物件與純值最大的差別就是: 純值不能新增屬性

物件新增屬性

var family = {};
family.name = 'Ray';
console.log(family); //物件
console.log(family['name']); // 'Ray'

純值新增屬性 (錯誤)

var num = 10;
console.log(num); //10
num.name = 'Ray';
console.log(num.name); //undefined

純值不允許新增屬性

JavaScript 只有兩種型別: 物件 與 純值

純值:

  1. String
  2. Boolean
  3. Number
  4. Undefined
  5. Null

#物件 #純值







Related Posts

九月 秋天 心裡暖烘烘的

九月 秋天 心裡暖烘烘的

[筆記] Command Line 超新手入門

[筆記] Command Line 超新手入門

寫一個簡單堪用的 ESLint plugin

寫一個簡單堪用的 ESLint plugin


Comments